/* 头部 */

.header {
    position: relative;
}

.header-top {
    background-color: rgb(29, 32, 136);
}
.header-top-wrapper {
    display: flex;
    width: 1200px;
    height: 105px;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center
}

.header-top__logo {
    position: relative;
    width:280px;
    height:60px;
}
.header-top__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.header-search-bar {
    position: relative;
}
.header-search-bar input{
    line-height: 30px;
    padding: 0px 35px 0px 15px;
    border-radius: 15px;
    outline: none;
    border: 1px solid #222;
}
.header-search-bar .butt {
    position: absolute;
    right: 5px;
    top: 0;
    cursor: pointer;
    width: 30px;
    padding: 0;
    border: 0;
    margin: 1px 0;
    background: #fff url(../image/ss.png) no-repeat center;
}

.header-nav {
    /*
    position: absolute;
    z-index: 999;
    left: 0;
    bottom: -59px;
    */
    width: 100%;
    height: 59px;
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
}

.header-navList {
    width: 1200px;
    height: 100%;
    display: flex;
    justify-content: flex-start;
}

.header-navList .header-navList__items {
    color: #222;
    font-size: 17px;
    width: 120px;
    line-height: 59px;
    height: 100%;
    cursor: pointer;
    position: relative;
    flex: 1 0 auto;
}

.header-navList .header-navList__items.selected > a,
.header-navList .header-navList__items:hover > a{
    color: #eca029;
}
.header-navList .header-navList__items .header-navList__content {
    display: block;
    width: 100%;
    text-align: center;
}

.header-navList .header-navList__items.selected .header-navList__content::after,
.header-navList .header-navList__items:hover .header-navList__content::after {
    content: '';
    display: block;
    left: 10%;
    right: auto;
    width: 80%;
    margin: 0 auto;
}

.header-navList .header-navList__items .header-navList__content::after {
    content: '';
    display: block;
    position: absolute;
    height: 4px;
    background-color: #eca029;
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    right: 10%;
    width: 0;
    bottom: 0;
}

.header-navList .header-navList__items:hover ul {
    display: block;
}
.header-navList .header-navList__items ul {
    list-style-type: none;
    display: none;
    background-color: rgb(255, 255, 255);
    position: absolute;
    z-index: 999;
    top: 59px;
    left: -10px;
    width: calc(100% + 20px);
}

.header-navList .header-navList__items ul li {
    list-style-type: none;
    height: 35px;
    line-height: 35px;
    background: none;
    width: 100%;
}

.header-navList .header-navList__items ul li a {
    display: block;
    text-align: center;
    line-height: 35px;
    padding: 0 5px;
    box-sizing: border-box;
    white-space: nowrap;
    overflow-x: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    width: 100%;
}

.header-navList .header-navList__items:hover ul li a:hover {
    color: #eca029;
    background: #FFF;
}

.header-mobile {
    width: 100%;
    height: 60px;
    background-color: rgb(29, 32, 136);
}
.navbar-toggle {
    position: relative;
    float: right;
    height: 36px;
}
.header-sm {
    display: none;
    position: relative;
    height: 60px;
    padding: 0 15px;
    border-bottom: 1px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    background-color: #15915D;
}
.header-sm .nav-logo {
    float: left;
    height: 100%;
}
.header-sm .nav-logo img {
    object-fit: contain;
    max-width: calc(100% - 80px);
    height: 100%;
}
.header-sm .nav-menu-btn {
    float: right;
    width: 48px;
    line-height: 36px;
    margin-top: 12px;
    border-radius: 5px;
    font-size: 24px;
    text-align: center;
    background-color: #15915D;
    color: #fff;
    cursor: pointer;
}
.header-sm .nav-menu-btn .fa{
    width: 22px;
    height: 20px;
    background: url(../image/fa-bars.png) no-repeat center;
}
.header-sm .header-collapse-list {
    display: block;
    position: absolute;
    top: 61px;
    left: 0;
    right: 0;
    padding: 5px 15px 15px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-bottom: 1px solid #e7e7e7;
    background-color: #fff;
    z-index: 999;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.header-collapse-list > li {
    position: relative;
    line-height: 36px;
    font-size: 16px;
    padding-left: 15px ;
    border-bottom: 1px dashed #e7e7e7;
}
.header-collapse-list > li.parent,
.header-collapse-list > li.selected {
    border-bottom: 2px solid #15915D;
    color: #15915D;
    background: url(../image/li_i.jpg) no-repeat 4px center;
}

.header-collapse-list > li a {
    display: block;
}
.header-collapse-list > li > a.open,
.header-collapse-list > li.selected > a {
    font-weight: bold;
    color: #15915D;
}
/*.header-collapse-list > li.selected:before {
    position: absolute;
    left: 5px;
    top: 11px;
    content: "\f0da";
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 16px;
    color: #15915D;
}*/
.header-collapse-list > li ul {
    display: none;
}
.header-collapse-list > li ul > li{
    position: relative;
    padding-left: 20px;
    border-bottom: 1px dashed #e7e7e7;
}
.header-collapse-list > li ul > li.selected {
    border-bottom: 1px solid #15915D;
}
.header-collapse-list > li ul > li.selected > a {
    color: #15915D;
}

@media (max-width: 768px) {
    .header-lg {
        display: none;
    }
    .header-sm {
        display: block;
    }
}

